home *** CD-ROM | disk | FTP | other *** search
/ Lake Powell / Lake Powell.iso / pc / glc5gcdm.dxr / 00104.ls < prev    next >
Encoding:
Text File  |  1998-04-16  |  643 b   |  31 lines

  1. on mouseDown
  2.   if the movieRate of sprite 30 = 1 then
  3.     set the movieRate of sprite 30 to 0
  4.     updateStage()
  5.     puppetSound("Tone")
  6.     set the visible of sprite 25 to 0
  7.     updateStage()
  8.     repeat while the mouseDown
  9.       nothing()
  10.     end repeat
  11.     set the visible of sprite 25 to 1
  12.     abort()
  13.   else
  14.     puppetSound("Tone")
  15.     set the visible of sprite 25 to 0
  16.     updateStage()
  17.     repeat while the mouseDown
  18.       nothing()
  19.     end repeat
  20.     unLoad()
  21.     set the visible of sprite 25 to 1
  22.     updateStage()
  23.     set the movieTime of sprite 30 to 0
  24.     set the movieRate of sprite 30 to 1
  25.   end if
  26. end
  27.  
  28. on mouseUp
  29.   nothing()
  30. end
  31.